You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
442 B
16 lines
442 B
import React from "react";
|
|
import { getSolutions } from "../../../lib/data";
|
|
import { SolutionsSection } from "../../../components/SolutionsSection";
|
|
|
|
export const revalidate = 300;
|
|
|
|
export default function SolutionsPage({ params }: { params: { locale: string } }) {
|
|
const locale = params.locale;
|
|
const data = getSolutions(locale);
|
|
return (
|
|
<main className="bg-[#f5f7fb]">
|
|
<SolutionsSection data={data} />
|
|
</main>
|
|
);
|
|
}
|
|
|
|
|